home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / FIX500S.ZIP / INDENT.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-01-01  |  356 b   |  13 lines

  1. @echo off
  2. if not ~%1 == ~ goto fixit
  3.     echo.
  4.     echo Utility:  INDENT.BAT - Performs special edit using FIX.COM..
  5.     echo Purpose:  Inserts an indentation tab at the beginning of every
  6.     echo           line in an ascii text file.
  7.     echo Syntax:   INDENT  [d:][path]FILENAME  [d:][path][outfile]
  8.     echo.
  9.     goto end
  10. :fixit
  11.     @ echo on
  12. fix ^ ^\t %1 %2
  13. :end